home *** CD-ROM | disk | FTP | other *** search
/ Aminet 35 / Aminet 35 (2000)(Schatztruhe)[!][Feb 2000].iso / Aminet / dev / misc / FlexCat_Demos.lha / FlexCat_Demos / Sources / C / HelloWorld.c next >
Encoding:
C/C++ Source or Header  |  1999-08-18  |  460 b   |  20 lines

  1. /* 
  2. **  File: HelloWorld.c
  3. **  Source #2
  4. **
  5. **  Note, unless you use very outdated or odd compiled you may
  6. **  not care about opening and closing all necessary libraries and
  7. **  files, as we use AutoOpen/AutoClose feature most compilers
  8. **  supports nowadays.
  9. */
  10.  
  11. #include <stdio.h>
  12. #include "HelloWorld_strings.h"
  13.  
  14. void main(void)
  15. {
  16.     printf(GetString(MSG_TEXT_1));
  17.     printf("%s - %s\n", GetString(MSG_TEXT_2),
  18.                         GetString(MSG_TEXT_3));
  19. }
  20.